type runtime.pollDesc
31 uses
runtime (current package)
netpoll.go#L73: type pollDesc struct {
netpoll.go#L75: link *pollDesc // in pollcache, protected by pollcache.lock
netpoll.go#L110: self *pollDesc // storage for indirect interface. See (*pollDesc).makeArg.
netpoll.go#L138: func (pd *pollDesc) info() pollInfo {
netpoll.go#L149: func (pd *pollDesc) publishInfo() {
netpoll.go#L172: func (pd *pollDesc) setEventErr(b bool, seq uintptr) {
netpoll.go#L190: first *pollDesc
netpoll.go#L236: func poll_runtime_pollOpen(fd uintptr) (*pollDesc, int) {
netpoll.go#L273: func poll_runtime_pollClose(pd *pollDesc) {
netpoll.go#L289: func (c *pollCache) free(pd *pollDesc) {
netpoll.go#L315: func poll_runtime_pollReset(pd *pollDesc, mode int) int {
netpoll.go#L334: func poll_runtime_pollWait(pd *pollDesc, mode int) int {
netpoll.go#L356: func poll_runtime_pollWaitCanceled(pd *pollDesc, mode int) {
netpoll.go#L364: func poll_runtime_pollSetDeadline(pd *pollDesc, d int64, mode int) {
netpoll.go#L446: func poll_runtime_pollUnblock(pd *pollDesc) {
netpoll.go#L484: func netpollready(toRun *gList, pd *pollDesc, mode int32) {
netpoll.go#L500: func netpollcheckerr(pd *pollDesc, mode int32) int {
netpoll.go#L537: func netpollblock(pd *pollDesc, mode int32, waitio bool) bool {
netpoll.go#L574: func netpollunblock(pd *pollDesc, mode int32, ioready bool) *g {
netpoll.go#L603: func netpolldeadlineimpl(pd *pollDesc, seq uintptr, read, write bool) {
netpoll.go#L644: netpolldeadlineimpl(arg.(*pollDesc), seq, true, true)
netpoll.go#L648: netpolldeadlineimpl(arg.(*pollDesc), seq, true, false)
netpoll.go#L652: netpolldeadlineimpl(arg.(*pollDesc), seq, false, true)
netpoll.go#L655: func (c *pollCache) alloc() *pollDesc {
netpoll.go#L658: const pdSize = unsafe.Sizeof(pollDesc{})
netpoll.go#L667: pd := (*pollDesc)(add(mem, i*pdSize))
netpoll.go#L684: func (pd *pollDesc) makeArg() (i any) {
netpoll.go#L692: pdEface any = (*pollDesc)(nil)
netpoll_epoll.go#L52: func netpollopen(fd uintptr, pd *pollDesc) uintptr {
netpoll_epoll.go#L65: func netpollarm(pd *pollDesc, mode int) {
netpoll_epoll.go#L163: pd := (*pollDesc)(tp.pointer())
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |